home *** CD-ROM | disk | FTP | other *** search
/ F1 Licenseware / F1 Licenseware - Volume 1.iso / disks / 003.dms / 003.adf / EXAMPLE_PROGRAMS / example14.AMOS / example14.amosSourceCode
AMOS Source Code  |  1993-02-25  |  771b  |  24 lines

  1. Rem example14.amos 
  2. '
  3. Rem don't forget to turn up the volume 
  4. '
  5. Rem The say command  
  6. '
  7. '
  8. Say "Hello, this is an example of the SAY command."
  9. Say " If you intend to use this command in your own programs,"
  10. Say "you must make sure that the narrator device is present on the disk you are using."
  11. Say "This file can be found in the DEVS drawer of your Amos disk"
  12. '
  13. '
  14. Rem the set talk command let's you change the sex,mode,pitch and rate of SAY.  
  15. '
  16. '
  17. Rem the commas mean use the default setting for the number that should be
  18. Rem there in it's place  
  19. Set Talk 1,,, : Say "THIS IS A FEMALE VOICE"
  20. Set Talk 1,1,, : Say "This is a female voice with inotation"
  21. Set Talk 0,0,320, : Say "A saprano voice"
  22. Set Talk ,,65, : Say "A deep voice"
  23. Set Talk ,,,40 : Say "THIS IS SLOW"
  24. Edit